home *** CD-ROM | disk | FTP | other *** search
/ Aminet 16 / Aminet 16 (1996)(GTI - Schatztruhe)[!][Dec 1996].iso / Aminet / util / moni / SysLog.lha / SysLog_V1.20 / Developer / GCC / os-include / inline / syslog.h
C/C++ Source or Header  |  1996-10-27  |  2KB  |  93 lines

  1. #ifndef _INLINE_SYSLOG_H
  2. #define _INLINE_SYSLOG_H
  3.  
  4. #include <sys/cdefs.h>
  5. #include <inline/stubs.h>
  6.  
  7. __BEGIN_DECLS
  8.  
  9. #ifndef BASE_EXT_DECL
  10. #define BASE_EXT_DECL
  11. #define BASE_EXT_DECL0 extern struct Library * SysLogBase;
  12. #endif
  13. #ifndef BASE_PAR_DECL
  14. #define BASE_PAR_DECL
  15. #define BASE_PAR_DECL0 void
  16. #endif
  17. #ifndef BASE_NAME
  18. #define BASE_NAME SysLogBase
  19. #endif
  20.  
  21. BASE_EXT_DECL0
  22.  
  23. extern __inline struct SysLogSpy *
  24. AddSysLogSpy (BASE_PAR_DECL0)
  25. {
  26.   BASE_EXT_DECL
  27.   register struct SysLogSpy * _res  __asm("d0");
  28.   register struct Library *a6 __asm("a6") = BASE_NAME;
  29.   __asm __volatile ("jsr a6@(-0x30)"
  30.   : "=r" (_res)
  31.   : "r" (a6)
  32.   : "a0","a1","d0","d1", "memory");
  33.   return _res;
  34. }
  35. extern __inline void 
  36. DeleteSysLogMessage (BASE_PAR_DECL struct SysLogMessage *message)
  37. {
  38.   BASE_EXT_DECL
  39.   register struct Library *a6 __asm("a6") = BASE_NAME;
  40.   register struct SysLogMessage *a0 __asm("a0") = message;
  41.   __asm __volatile ("jsr a6@(-0x24)"
  42.   : /* no output */
  43.   : "r" (a6), "r" (a0)
  44.   : "a0","a1","d0","d1", "memory");
  45. }
  46. extern __inline void 
  47. GetSysLogMsgTime (BASE_PAR_DECL struct SysLogMessage * syslogmessage)
  48. {
  49.   BASE_EXT_DECL
  50.   register struct Library *a6 __asm("a6") = BASE_NAME;
  51.   register struct SysLogMessage * a0 __asm("a0") = syslogmessage;
  52.   __asm __volatile ("jsr a6@(-0x2a)"
  53.   : /* no output */
  54.   : "r" (a6), "r" (a0)
  55.   : "a0","a1","d0","d1", "memory");
  56. }
  57. extern __inline void 
  58. Log (BASE_PAR_DECL LONG priority,LONG options,UBYTE *tag,UBYTE *message,LONG *argarray)
  59. {
  60.   BASE_EXT_DECL
  61.   register struct Library *a6 __asm("a6") = BASE_NAME;
  62.   register LONG d0 __asm("d0") = priority;
  63.   register LONG d1 __asm("d1") = options;
  64.   register UBYTE *a0 __asm("a0") = tag;
  65.   register UBYTE *a1 __asm("a1") = message;
  66.   register LONG *a2 __asm("a2") = argarray;
  67.   __asm __volatile ("jsr a6@(-0x1e)"
  68.   : /* no output */
  69.   : "r" (a6), "r" (d0), "r" (d1), "r" (a0), "r" (a1), "r" (a2)
  70.   : "a0","a1","a2","d0","d1", "memory");
  71. }
  72. extern __inline void 
  73. RemSysLogSpy (BASE_PAR_DECL struct SysLogSpy *spy)
  74. {
  75.   BASE_EXT_DECL
  76.   register struct Library *a6 __asm("a6") = BASE_NAME;
  77.   register struct SysLogSpy *a0 __asm("a0") = spy;
  78.   __asm __volatile ("jsr a6@(-0x36)"
  79.   : /* no output */
  80.   : "r" (a6), "r" (a0)
  81.   : "a0","a1","d0","d1", "memory");
  82. }
  83.  
  84. #undef BASE_EXT_DECL
  85. #undef BASE_EXT_DECL0
  86. #undef BASE_PAR_DECL
  87. #undef BASE_PAR_DECL0
  88. #undef BASE_NAME
  89.  
  90. __END_DECLS
  91.  
  92. #endif /* _INLINE_SYSLOG_H */
  93.